home *** CD-ROM | disk | FTP | other *** search
/ Apple Developer Connection 1998 Fall: Game Toolkit / Disc.iso / SDKs / Apple Game Sprockets / DrawSprocket / GoggleSprocket / GoggleSprocketTest Sources / GSpTest_DSpSupport.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-12  |  1.1 KB  |  39 lines  |  [TEXT/CWIE]

  1. /*
  2. ********************************************************************************
  3. **
  4. ** Name: DSpSupport.h
  5. **
  6. ** Description:
  7. **
  8. **    Support routines for using DrawSprocket.
  9. **
  10. ********************************************************************************
  11. */
  12. #ifndef __DSpSupport_h__
  13. #define __DSpSupport_h__
  14.  
  15. #include "DrawSprocket.h"
  16.  
  17. /*
  18. ********************************************************************************
  19. ** globals
  20. ********************************************************************************
  21. */
  22. extern DSpContextAttributes gDSpContextAttributes;
  23. extern DSpContextReference gDSpContext;
  24.  
  25. /*
  26. ********************************************************************************
  27. ** prototypes
  28. ********************************************************************************
  29. */
  30. OSStatus DisplayInit( void );
  31. OSStatus DisplayActivate( void );
  32. OSStatus DisplayPause( void );
  33. OSStatus DisplayFadeOut( void );
  34. OSStatus DisplayFadeIn( void );
  35. OSStatus DisplayRelease( void );
  36. CGrafPtr DisplayGetBuffer( void );
  37. OSStatus DisplayShowBuffer( void );
  38.  
  39. #endif // __DSpSupport_h__